B

CopyToPolicyFields

8BDescription

This business rule allows one or more MathVariables to be copied from an activity to one or more policy fields.  If the fields are displayed on the Policy screen, the values will be viewable.  This CopyToPolicyFields rule is attached to a transaction.

209BCopyToPolicyFields Element and Attribute Table

Element/Tag

Definition

Attribute

Element/Attribute Value and Description

<CopyToPolicyFields>

The required opening and closing elements of this business rule.

 

 

       <Fields>

Required element;
Identifies the Field section.

 

 

              <Field>

Repeatable element;
The <Field> tag is used to update a field in AsPolicyField table by passing the required information from the transaction.

 

 

                     <From>

 

 

String - Name of ActivityField or MathVariable that data is being copied from.  If grabbing value from fields section in ActivityField, then must prefix with Activity:FieldName.

                     <To>

 

 

String - Name of PolicyField that data is being copied to. The value of the <To> tag will be saved in AsPolicy or AsPolicyField table in the database.

 

210BXML Example

<CopyToPolicyFields>

        <Fields>

                <Field>

                        <From>Activity:ReinsuranceIndicator</From>

                        <To>ReinsuranceIndicator</To>

                </Field>

        </Fields>

</CopyToPolicyFields>

 

210Schema Example

<CopyToPolicyFields TYPE="IFEMPTY">

<Fields>

<Field>

<From>[String]</From>

<To>[String]</To>

</Field>

</Fields>

</CopyToPolicyFields>

 

42B